home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 701-725 / 708 / intuisup / intuisup42.lha / Intuisup / source.lha / Editor / makefile < prev    next >
Makefile  |  1992-04-22  |  970b  |  35 lines

  1. #
  2. #        Makefile for Editor (Aztec C v5.2a)
  3. #
  4. # Macros
  5. #
  6. #CFLAGS_PRE =-dMWDEBUG -a -ms -pacs0t -so -wdelopqw -ho ram:editor.pre
  7. CFLAGS_PRE =-a -ms -pacs0t -so -wdelopqw -ho ram:editor.pre
  8. CFLAGS     =-ms -pacs0t -so -wdelopqw -hi ram:editor.pre
  9. LFLAGS     =-m +q
  10. OBJECTS    =main.o req.o editor.o project.o window.o template.o subs.o\
  11.  fonts.o save.o load.o edit1.o edit2.o list.o source.o
  12. # /render/render.o /texts/texts.o /borders/borders.o /gadgets/gadgets1.o\
  13. # /gadgets/gadgets2.o /gadgets/gadgets3.o /requester/requester.o\
  14. # /menus/menus.o /files/files.o /language/language.o
  15. #LIBRARIES  =-lmemwatch16 -la16 -lc16
  16. LIBRARIES  =-la16 -lc16
  17. #
  18. # Dependancy entries
  19. #
  20. all: ram:editor.pre editor clear
  21. #
  22. ram:editor.pre: editor.pre
  23.    copy editor.pre $@ clone
  24. #
  25. editor.pre: includes.h /library/intuisup.h
  26.    cc $(CFLAGS_PRE) -o nil: includes.h
  27.    copy ram:$@ $@ clone
  28. #
  29. editor: $(OBJECTS)
  30.    ln $(LFLAGS) -o $@ $(OBJECTS) $(LIBRARIES)
  31. #
  32. clear:
  33.    delete ram:#?.pre
  34. #
  35.